翻訳と辞書
Words near each other
・ Lowes Barn
・ Lowes Cato Dickinson
・ Lowes Dalbiac Luard
・ Lowes Foods
・ Lowes Island, Virginia
・ Lowes Loch (Ayrshire)
・ Lowes Menswear
・ Lowes Moore
・ Lowes, Kentucky
・ Lowesby
・ Lowesby Hall
・ Lowesby railway station
・ Lowesdale, New South Wales
・ Lowest Achievable Emissions Rate
・ Lowest bridging point
Lowest common ancestor
・ Lowest common denominator
・ Lowest common divisor
・ Lowest common factor
・ Lowest Music & Arts 1980–1983
・ Lowest Music 2
・ Lowest of the Low
・ Lowest of the Low (album)
・ Lowest published toxic dose
・ Lowest safe altitude
・ Lowest temperature recorded on Earth
・ Lowest usable high frequency
・ Lowest-observed-adverse-effect level
・ Lowestoffe-class frigate
・ Lowestoft


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Lowest common ancestor : ウィキペディア英語版
Lowest common ancestor

In graph theory and computer science, the lowest common ancestor (LCA) of two nodes and in a tree or directed acyclic graph (DAG) is the lowest (i.e. deepest) node that has both and as descendants, where we define each node to be a descendant of itself (so if has a direct connection from , is the lowest common ancestor).
The LCA of ''v'' and ''w'' in ''T'' is the shared ancestor of ''v'' and ''w'' that is located farthest from the root. Computation of lowest common ancestors may be useful, for instance, as part of a procedure for determining the distance between pairs of nodes in a tree: the distance from ''v'' to ''w'' can be computed as the distance from the root to ''v'', plus the distance from the root to ''w'', minus twice the distance from the root to their lowest common ancestor . In ontologies, the lowest common ancestor is also known as the least common subsumer.
In a tree data structure where each node points to its parent, the lowest common ancestor can be easily determined by finding the first intersection of the paths from ''v'' and ''w'' to the root. In general, the computational time required for this algorithm is O(''h'') where ''h'' is the height of the tree (length of longest path from a leaf to the root). However, there exist several algorithms for processing trees so that lowest common ancestors may be found more quickly. Tarjan's off-line lowest common ancestors algorithm, for example, preprocesses a tree in linear time to provide constant-time LCA queries. In general DAGs, similar algorithms exist, but with super-linear complexity.
==History==

The lowest common ancestor problem was defined by , but were the first to develop an optimally efficient lowest common ancestor data structure. Their algorithm processes any tree in linear time, using a heavy path decomposition, so that subsequent lowest common ancestor queries may be answered in constant time per query. However, their data structure is complex and difficult to implement. Tarjan also found a simpler but less efficient algorithm, based on the union-find data structure, for computing lowest common ancestors of an offline batch of pairs of nodes.
simplified the data structure of Harel and Tarjan, leading to an implementable structure with the same asymptotic preprocessing and query time bounds. Their simplification is based on the principle that, in two special kinds of trees, lowest common ancestors are easy to determine: if the tree is a path, then the lowest common ancestor can be computed simply from the minimum of the levels of the two queried nodes, while if the tree is a complete binary tree, the nodes may be indexed in such a way that lowest common ancestors reduce to simple binary operations on the indices. The structure of Schieber and Vishkin decomposes any tree into a collection of paths, such that the connections between the paths have the structure of a binary tree, and combines both of these two simpler indexing techniques.
discovered a completely new way to answer lowest common ancestor queries, again achieving linear preprocessing time with constant query time. Their method involves forming an Euler tour of a graph formed from the input tree by doubling every edge, and using this tour to write a sequence of level numbers of the nodes in the order the tour visits them; a lowest common ancestor query can then be transformed into a query that seeks the minimum value occurring within some subinterval of this sequence of numbers. They then handle this range minimum query problem by combining two techniques, one technique based on precomputing the answers to large intervals that have sizes that are powers of two, and the other based on table lookup for small-interval queries. This method was later presented in a simplified form by . As had been previously observed by , the range minimum problem can in turn be transformed back into a lowest common ancestor problem using the technique of Cartesian trees.
Further simplifications were made by and .
A variant of the problem is the dynamic LCA problem in which the data structure should be prepared to handle LCA queries intermixed with operations that change the tree (that is, rearrange the tree by adding and removing edges) This variant can be solved using O(logN) time for all modifications and queries. This is done by maintaining the forest using the dynamic trees data structure with partitioning by size; this then maintains a heavy-;light decomposition of each tree, and allows LCA queries to be carried out in logarithmic time in the size of the tree.
Without preprocessing you can also improve the naïve online algorithm's computation time to O(log ''h'') by storing the paths through the tree using skew-binary random access lists, while still permitting the tree to be extended in constant time ((Edward Kmett (2012) )). This allows LCA queries to be carried out in logarithmic time in the height of the tree.

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Lowest common ancestor」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.